home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gdevtifs.c < prev    next >
C/C++ Source or Header  |  1995-11-14  |  8KB  |  239 lines

  1. /* Copyright (C) 1994, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevtifs.c */
  20. /* TIFF-writing substructure */
  21. #include "stdio_.h"
  22. #include "time_.h"
  23. #include "gstypes.h"
  24. #include "gscdefs.h"
  25. #include "gdevprn.h"
  26. #include "gdevtifs.h"
  27.  
  28. /*
  29.  * Define the standard contents of a TIFF directory.
  30.  * Clients may add more items, also sorted in increasing tag order.
  31.  */
  32. typedef struct TIFF_std_directory_entries_s {
  33.     TIFF_dir_entry    SubFileType;
  34.     TIFF_dir_entry    ImageWidth;
  35.     TIFF_dir_entry    ImageLength;
  36.     TIFF_dir_entry    StripOffsets;
  37.     TIFF_dir_entry    Orientation;
  38.     TIFF_dir_entry    RowsPerStrip;
  39.     TIFF_dir_entry    StripByteCounts;
  40.     TIFF_dir_entry    XResolution;
  41.     TIFF_dir_entry    YResolution;
  42.     TIFF_dir_entry    PlanarConfig;
  43.     TIFF_dir_entry    ResolutionUnit;
  44.     TIFF_dir_entry    PageNumber;
  45.     TIFF_dir_entry    Software;
  46.     TIFF_dir_entry    DateTime;
  47. } TIFF_std_directory_entries;
  48. /* Define values that follow the directory entries. */
  49. typedef struct TIFF_std_directory_values_s {
  50.     TIFF_ulong    diroff;            /* offset to next directory */
  51.     TIFF_ulong    xresValue[2];        /* XResolution indirect value */
  52.     TIFF_ulong    yresValue[2];        /* YResolution indirect value */
  53. #define maxSoftware 40
  54.     char        softwareValue[maxSoftware]; /* Software indirect value */
  55.     char        dateTimeValue[20];    /* DateTime indirect value */
  56. } TIFF_std_directory_values;
  57. private const TIFF_std_directory_entries std_entries_initial = {
  58.     { TIFFTAG_SubFileType,    TIFF_LONG,  1, SubFileType_page },
  59.     { TIFFTAG_ImageWidth,    TIFF_LONG,  1 },
  60.     { TIFFTAG_ImageLength,    TIFF_LONG,  1 },
  61.     { TIFFTAG_StripOffsets,    TIFF_LONG,  1 },
  62.     { TIFFTAG_Orientation,    TIFF_SHORT, 1, Orientation_top_left },
  63.     { TIFFTAG_RowsPerStrip,    TIFF_LONG,  1 },
  64.     { TIFFTAG_StripByteCounts, TIFF_LONG,  1 },
  65.     { TIFFTAG_XResolution,    TIFF_RATIONAL | TIFF_INDIRECT, 1,
  66.         offset_of(TIFF_std_directory_values, xresValue[0]) },
  67.     { TIFFTAG_YResolution,    TIFF_RATIONAL | TIFF_INDIRECT, 1,
  68.         offset_of(TIFF_std_directory_values, yresValue[0]) },
  69.     { TIFFTAG_PlanarConfig,    TIFF_SHORT, 1, PlanarConfig_contig },
  70.     { TIFFTAG_ResolutionUnit, TIFF_SHORT, 1, ResolutionUnit_inch },
  71.     { TIFFTAG_PageNumber,    TIFF_SHORT, 2 },
  72.     { TIFFTAG_Software,    TIFF_ASCII | TIFF_INDIRECT, 0,
  73.         offset_of(TIFF_std_directory_values, softwareValue[0]) },
  74.     { TIFFTAG_DateTime,    TIFF_ASCII | TIFF_INDIRECT, 20,
  75.         offset_of(TIFF_std_directory_values, dateTimeValue[0]) }
  76. };
  77. private const TIFF_std_directory_values std_values_initial = {
  78.     0, { 0, 1 }, { 0, 1 }, { 0 }, { 0, 0 }
  79. };
  80.  
  81. /* Fix up tag values on big-endian machines if necessary. */
  82. #if arch_is_big_endian
  83. private void
  84. tiff_fixup_tag(TIFF_dir_entry *dp)
  85. {    switch ( dp->type )
  86.       {
  87.       case TIFF_SHORT: case TIFF_SSHORT:
  88.         /* We may have two shorts packed into a TIFF_ulong. */
  89.         dp->value = (dp->value << 16) + (dp->value >> 16); break;
  90.       case TIFF_BYTE: case TIFF_SBYTE:
  91.         dp->value <<= 24; break;
  92.       }
  93. }
  94. #else
  95. #  define tiff_fixup_tag(dp) DO_NOTHING
  96. #endif
  97.  
  98. /* Begin a TIFF page. */
  99. int
  100. gdev_tiff_begin_page(gx_device_printer *pdev, gdev_tiff_state *tifs, FILE *fp,
  101.   const TIFF_dir_entry *entries, int entry_count,
  102.   const byte *values, int value_size)
  103. {    TIFF_std_directory_entries std_entries;
  104.     const TIFF_dir_entry *pse = (TIFF_dir_entry *)&std_entries;
  105.     const TIFF_dir_entry *pce;
  106.     TIFF_dir_entry entry;
  107. #define std_entry_count\
  108.   (sizeof(TIFF_std_directory_entries) / sizeof(TIFF_dir_entry))
  109.     int nse, nce, ntags;
  110.     TIFF_std_directory_values std_values;
  111. #define std_value_size sizeof(TIFF_std_directory_values)
  112.  
  113.     if ( gdev_prn_file_is_new(pdev) )
  114.       {    /* This is a new file; write the TIFF header. */
  115.         static const TIFF_header hdr =
  116.           {
  117. #if arch_is_big_endian
  118.             TIFF_magic_big_endian,
  119. #else
  120.             TIFF_magic_little_endian,
  121. #endif
  122.             TIFF_version_value,
  123.             sizeof(TIFF_header)
  124.           };
  125.         fwrite((const char *)&hdr, sizeof(hdr), 1, fp);
  126.         tifs->prev_dir = 0;
  127.       }
  128.     else
  129.       {    /* Patch pointer to this directory from previous. */
  130.         TIFF_ulong offset = (TIFF_ulong)tifs->dir_off;
  131.         fseek(fp, tifs->prev_dir, SEEK_SET);
  132.         fwrite((char *)&offset, sizeof(offset), 1, fp);
  133.         fseek(fp, tifs->dir_off, SEEK_SET);
  134.       }
  135.  
  136.     /* We're going to shuffle the two tag lists together. */
  137.     /* Both lists are sorted; entries in the client list */
  138.     /* replace entries with the same tag in the standard list. */
  139.     for ( ntags = 0, pse = (const TIFF_dir_entry *)&std_entries,
  140.           nse = std_entry_count, pce = entries, nce = entry_count;
  141.           nse && nce; ++ntags
  142.         )
  143.       {    if ( pse->tag < pce->tag ) ++pse, --nse;
  144.         else if ( pce->tag < pse->tag ) ++pce, --nce;
  145.         else ++pse, --nse, ++pce, --nce;
  146.       }
  147.     ntags += nse + nce;
  148.     tifs->ntags = ntags;
  149.     tifs->vsize = std_value_size + value_size;
  150.  
  151.     /* Write count of tags in directory. */
  152.     {    TIFF_short dircount = ntags;
  153.         fwrite((char *)&dircount, sizeof(dircount), 1, fp);
  154.     }
  155.     tifs->dir_off = ftell(fp);
  156.  
  157.     /* Fill in standard directory tags. */
  158.     std_entries = std_entries_initial;
  159.     std_values = std_values_initial;
  160.     std_entries.ImageWidth.value = pdev->width;
  161.     std_entries.ImageLength.value = pdev->height;
  162.     std_entries.StripOffsets.value =
  163.       tifs->dir_off + sizeof(TIFF_std_directory_entries) +
  164.         entry_count * sizeof(TIFF_dir_entry) +
  165.         sizeof(TIFF_std_directory_values) + value_size;
  166.     std_entries.RowsPerStrip.value = pdev->height;
  167.     std_entries.PageNumber.value = (TIFF_ulong)pdev->PageCount;
  168.     std_values.xresValue[0] = pdev->x_pixels_per_inch;
  169.     std_values.yresValue[0] = pdev->y_pixels_per_inch;
  170.     {    char revs[10];
  171.         strncpy(std_values.softwareValue, gs_product, maxSoftware);
  172.         std_values.softwareValue[maxSoftware - 1] = 0;
  173.         sprintf(revs, " %1.2f", gs_revision / 100.0);
  174.         strncat(std_values.softwareValue, revs,
  175.             maxSoftware - strlen(std_values.softwareValue) - 1);
  176.         std_entries.Software.count =
  177.           strlen(std_values.softwareValue) + 1;
  178.     }
  179.     {    struct tm tms;
  180.         time_t t;
  181.         time(&t);
  182.         tms = *localtime(&t);
  183.         sprintf(std_values.dateTimeValue,
  184.             "%04d:%02d:%02d %02d:%02d:%02d",
  185.             tms.tm_year + 1900, tms.tm_mon, tms.tm_mday,
  186.             tms.tm_hour, tms.tm_min, tms.tm_sec);
  187.     }
  188.  
  189.     /* Write the merged directory. */
  190.     for ( pse = (const TIFF_dir_entry *)&std_entries,
  191.           nse = std_entry_count, pce = entries, nce = entry_count;
  192.           nse || nce;
  193.         )
  194.       {    bool std;
  195.         if ( nce == 0 || (nse != 0 && pse->tag < pce->tag) )
  196.           std = true, entry = *pse++, --nse;
  197.         else if ( nse == 0 || (nce != 0 && pce->tag < pse->tag) )
  198.           std = false, entry = *pce++, --nce;
  199.         else
  200.           std = false, ++pse, --nse, entry = *pce++, --nce;
  201.         if ( entry.tag == TIFFTAG_StripByteCounts )
  202.           tifs->offset_StripByteCounts =
  203.             (int)(ftell(fp) - tifs->dir_off);
  204.         tiff_fixup_tag(&entry);    /* don't fix up indirects */
  205.         if ( entry.type & TIFF_INDIRECT )
  206.           { /* Fix up the offset for an indirect value. */
  207.             entry.type -= TIFF_INDIRECT;
  208.             entry.value +=
  209.               tifs->dir_off + ntags * sizeof(TIFF_dir_entry) +
  210.             (std ? 0 : std_value_size);
  211.           }
  212.         fwrite((char *)&entry, sizeof(entry), 1, fp);
  213.       }
  214.  
  215.     /* Write the indirect values. */
  216.     fwrite((const char *)&std_values, sizeof(std_values), 1, fp);
  217.     fwrite((const char *)values, value_size, 1, fp);
  218.  
  219.     return 0;
  220. }
  221.  
  222. /* End a TIFF page. */
  223. int
  224. gdev_tiff_end_page(gdev_tiff_state *tifs, FILE *fp)
  225. {    long dir_off = tifs->dir_off;
  226.     int tags_size = tifs->ntags * sizeof(TIFF_dir_entry);
  227.     TIFF_ulong cc;
  228.  
  229.     tifs->prev_dir =
  230.       dir_off + tags_size + offset_of(TIFF_std_directory_values, diroff);
  231.     tifs->dir_off = ftell(fp);
  232.     /* Patch strip byte counts value. */
  233.     cc = tifs->dir_off - (dir_off + tags_size + tifs->vsize);
  234.     fseek(fp, dir_off + tifs->offset_StripByteCounts +
  235.         offset_of(TIFF_dir_entry, value), SEEK_SET);
  236.     fwrite(&cc, sizeof(cc), 1, fp);
  237.     return 0;
  238. }
  239.